[DEPRECATED] Use form field endpoints instead. Creates a new workflow custom field selection from provided data
curl --request POST \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"values": [
"<string>"
],
"selected_option_ids": [
123
]
}
}
}'
{
"data": {
"id": "2",
"type": "workflow_custom_field_selections",
"attributes": {
"custom_field_id": 167,
"workflow_id": "306f022e-510f-4d0d-a5c6-353620c25503",
"incident_condition": "ANY",
"values": [],
"selected_option_ids": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow_custom_field_selection created
The response is of type object
.
curl --request POST \
--url https://api.rootly.com/v1/workflows/{workflow_id}/custom_field_selections \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "workflow_custom_field_selections",
"attributes": {
"workflow_id": "<string>",
"custom_field_id": 123,
"incident_condition": "ANY",
"values": [
"<string>"
],
"selected_option_ids": [
123
]
}
}
}'
{
"data": {
"id": "2",
"type": "workflow_custom_field_selections",
"attributes": {
"custom_field_id": 167,
"workflow_id": "306f022e-510f-4d0d-a5c6-353620c25503",
"incident_condition": "ANY",
"values": [],
"selected_option_ids": []
}
}
}